-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libsndfile: ogg/flac/opus/vorbus are recommended dependencies (not required) + remove sqlite dependency #3634
Conversation
An unexpected error happened and has been reported. Help is on its way! 🏇 |
All green in build 2 (
|
All green in build 3 (
|
@@ -16,15 +17,18 @@ class LibsndfileConan(ConanFile): | |||
"programs": [True, False], | |||
"experimental": [True, False], | |||
"with_alsa": [True, False], | |||
"with_sqlite": [True, False], | |||
"with_sqlite": ["deprecated", True, False], | |||
"with_external_libs": [True, False], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could these be controlled individually?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, ENABLE_EXTERNAL_LIBS
needs all.
https://github.com/libsndfile/libsndfile/blob/91128fcd60ab13cca0b1475960c75b07cdca7b04/CMakeLists.txt#L79
All green in build 4 (
|
@uilianries @SpaceIm @SSE4 |
Co-authored-by: SpaceIm <30052553+SpaceIm@users.noreply.github.com>
All green in build 5 (
|
Specify library name and version: libsndfile/*
sqlite3 is only used by regtest, which is not built
ogg/flac/opus/vorbus are recommended dependencies, not absolutely required (so make them optional)
I've read the guidelines for contributing.
I've followed the PEP8 style guides for Python code in the recipes.
I've used the latest Conan client version.
I've tried at least one configuration locally with the
conan-center hook activated.